Next:
elbow method & silhouette plot(evaluate method)
, Previous:
FCM(Soft clustering)
, Up:
Index
Simple clustering data
2차원 군집 데이터셋
from
sklearn
.
datasets
import
make_blobs
X
,
y
=
make_blobs
(
n_samples
=
150
,
n_features
=
2
,
centers
=
3
,
cluster_std
=
0.5
,
shuffle
=
True
,
random_state
=
0
)